home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1999 #5 / 1999 CD 5 (black).iso / Delphi3 / install / data.z / OLECONST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-08-04  |  1.0 KB  |  28 lines

  1. unit OleConst;
  2.  
  3. interface
  4.  
  5. resourcestring
  6.   SBadPropValue = '''%s'' is not a valid property value';
  7.   SCannotActivate = 'OLE control activation failed';
  8.   SNoWindowHandle = 'Could not obtain OLE control window handle';
  9.   SOleError = 'OLE error %.8x';
  10.   SVarNotObject = 'Variant does not reference an OLE object';
  11.   SVarNotAutoObject = 'Variant does not reference an automation object';
  12.   SNoMethod = 'Method ''%s'' not supported by OLE object';
  13.   SLinkProperties = 'Link Properties';
  14.   SInvalidLinkSource = 'Cannot link to an invalid source.';
  15.   SCannotBreakLink = 'Break link operation is not supported.';
  16.   SLinkedObject = 'Linked %s';
  17.   SEmptyContainer = 'Operation not allowed on an empty OLE container';
  18.   SInvalidVerb = 'Invalid object verb';
  19.   SPropDlgCaption = '%s Properties';
  20.   SInvalidStreamFormat = 'Invalid stream format';
  21.   SInvalidLicense = 'License information for %s is invalid';
  22.   SNotLicensed = 'License information for %s not found. You cannot use this control in design mode';
  23.  
  24. implementation
  25.  
  26. end.
  27.  
  28.